home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\LIST.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  616b  |  34 lines

  1. /*
  2.  * list.h: header for list.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: list.h,v 1.4 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _LIST_H_
  14. #define _LIST_H_
  15.  
  16. typedef    struct    list_stru
  17. {
  18.     struct    list_stru    *next;
  19.     char    *name;
  20. }    List;
  21.  
  22. extern    void    add_to_list();
  23. extern    List    *find_in_list();
  24. extern    List    *remove_from_list();
  25. extern    List    *list_lookup();
  26. extern    List    *remove_from_list_ext();
  27. extern    void    add_to_list_ext();
  28. extern    List    *find_in_list_ext();
  29.  
  30. #define REMOVE_FROM_LIST 1
  31. #define USE_WILDCARDS 1
  32.  
  33. #endif /* _LIST_H */
  34.